home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / bin / c99-gcc < prev    next >
Text File  |  2006-05-07  |  451b  |  25 lines

  1. #! /bin/sh
  2.  
  3. # Call the appropriate C compiler with options to accept ANSI/ISO C
  4. # The following options are the same (as of gcc-3.3):
  5. #     -std=c99
  6. #     -std=c9x
  7. #     -std=iso9899:1999
  8. #     -std=iso9899:199x
  9.  
  10. extra_flag=-std=c99
  11.  
  12. for i; do
  13.     case "$i" in
  14.     -std=c9[9x]|-std=iso9899:199[9x])
  15.         extra_flag=
  16.         ;;
  17.     -std=*)
  18.         echo >&2 "`basename $0` called with non ANSI/ISO C option $i"
  19.         exit 1
  20.         ;;
  21.     esac
  22. done
  23.  
  24. exec gcc $extra_flag ${1+"$@"}
  25.